home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / libol / io_commands.h < prev    next >
C/C++ Source or Header  |  2005-10-16  |  2KB  |  58 lines

  1. /***************************************************************************
  2.  *
  3.  * Copyright (c) 1998-1999 Niels M÷ller
  4.  * Copyright (c) 1999 BalaBit Computing
  5.  * 
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation; either version 2 of the License, or
  9.  * (at your option) any later version.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, write to the Free Software
  18.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  *
  20.  * $Id: io_commands.h,v 1.1 1999/07/10 13:23:09 bazsi Exp $
  21.  *
  22.  ***************************************************************************/
  23.  
  24. #ifndef __IO_COMMANDS_H_INCLUDED
  25. #define __IO_COMMANDS_H_INCLUDED
  26.  
  27. #include "command.h"
  28. #include "io.h"
  29.  
  30. #define CLASS_DECLARE
  31. #include "io_commands.h.x"
  32. #undef CLASS_DECLARE
  33.  
  34. /* Returned by listen */
  35. /* CLASS:
  36.    (class
  37.      (name listen_value)
  38.      (vars
  39.        (fd object io_fd)
  40.        (peer object address_info)))
  41. */
  42.  
  43. struct command *make_listen_command(struct command *callback,
  44.                     struct io_backend *backend);
  45.  
  46. extern struct collect_info_1 listen_command;
  47. #define LISTEN_COMMAND (&listen_command.super.super.super)
  48.  
  49. struct command *make_simple_connect(struct io_backend *backend,
  50.                     struct resource_list *resources);
  51. struct command *
  52. make_simple_listen(struct io_backend *backend,
  53.            struct resource_list *resources);
  54.  
  55. extern struct command_simple io_log_peer_command;
  56.  
  57. #endif /* __IO_COMMANDS_H_INCLUDED */
  58.